home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / AETSK102.ZIP / contrib / tasks / inc / keybdtsk.h < prev    next >
C/C++ Source or Header  |  1991-10-11  |  874b  |  30 lines

  1. /**********************************************************************
  2.  *  
  3.  *  NAME:           keybdtsk.h
  4.  *  
  5.  *  DESCRIPTION:    header file for task that reads kbd
  6.  *  
  7.  *  M O D I F I C A T I O N   H I S T O R Y
  8.  *
  9.  *  when        who                 what
  10.  *  -------------------------------------------------------------------
  11.  *  10/11/91    J. Alan Eldridge    created
  12.  *  
  13.  *********************************************************************/
  14.  
  15. //------------------------------------------------------------
  16. //  ********** CLASS KEYBDTASK **********
  17. //  a task that reads the keyboard into a pipe
  18. //------------------------------------------------------------
  19.  
  20. class KeybdTask: public Task {
  21. public:
  22.     KeybdTask(): Task("KeybdTask")
  23.         { }
  24.     void    TaskMain();
  25. };
  26.  
  27. extern KeybdTask    KbdTask;
  28. extern BPipe        KbdPipe;
  29.  
  30.